home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from base.g import *
- from PyQt4.QtCore import *
- from PyQt4.QtGui import *
-
- class FABGroupTable(QTableWidget):
-
- def __init__(self, parent):
- QTableWidget.__init__(self, parent)
- self.db = None
-
-
- def setDatabase(self, db):
- self.db = db
-
-
- def dragMoveEvent(self, e):
- item = self.itemAt(e.pos())
- e.ignore()
-
-
- def dropMimeData(self, row, col, data, action):
- items = unicode(data.data(u'text/plain')).split(u'|')
- self.emit(SIGNAL('namesAddedToGroup'), row, items)
- return False
-
-
- def mimeTypes(self):
- return QStringList([
- u'text/plain'])
-
-
-